home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 May / PCWorld_2000-05_cd.bin / Software / TemaCD / povray / povwin3.exe / %MAINDIR% / Insert Menu / Misc. Directives / if example.txt < prev    next >
Encoding:
Text File  |  2000-04-06  |  309 b   |  10 lines

  1.   #if (High_Quality)
  2.     // This section is parsed if High_Quality is true
  3.   #end // End of conditional part
  4. // or you can use the else clause too
  5.   #if (clock > 2)
  6.     // This section is parsed if clock is > 2
  7.   #else
  8.     // This section is parsed if clock is <= 2
  9.   #end // End of conditional part
  10.